home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-12-25 | 389 b | 22 lines |
- # Makefile for Generic Sound Server
- # by Ken Hollis
-
- CC= gcc
- CFLAGS= -O6 -Wall -m486 -I..
- LINK_FLAGS= main.o
-
- sound_server: $(LINK_FLAGS)
- $(CC) -o $@ $^
- strip sound_server
-
- clean:
- rm -f *.o sound_server
-
- install: sound_server
- @echo
- @echo Installing the sound server, one moment.
- @echo
- @cp sound_server /bin
- @chown root.root /bin/sound_server
- @chmod 755 /bin/sound_server
-